home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / tool / tmexnode.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-16  |  234 b   |  9 lines

  1. struct node {
  2.     struct node *next;        /* next pointer */
  3.     struct node *prev;        /* prev pointer */
  4.     char id[8];                /* ID tag */
  5.     unsigned long entry;    /* entry */
  6.     unsigned long stack;    /* stack size */
  7.     long flag;                /* flags */
  8. };
  9.